GET
/api/exhibitions-list/{exhibition_id} Get Exhibition-List Item by ID
Retrieve a single exhibition-list item by identifier.
Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
| exhibition_id | integer | Yes | path | Exhibition identifier. |
| token | string | Yes | query | MoMA API token. |
Try It
Client-side request execution
Live URL
https://api.moma.org/api/exhibitions-list/22Example Request
GET /api/exhibitions-list/22?token=YOUR_TOKEN
Example Response
{
"source": "MoMA TMS API",
"language": "en",
"resultsCount": 1,
"exhibitions": [
{
"exhibitionID": 22,
"exhibitionTitle": "Modern Masters (List View)"
}
]
}